All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sun.java.swing.event.InternalFrameListener

public interface InternalFrameListener
extends EventListener
The listener interface for receiving internal frame events. This class is functionally equivalent to the WindowListener class in the AWT.

See Writing a Window Listener in The Java Tutorial and The Java Class Libraries (update) for further documentation.

See Also:
WindowListener

Method Index

 o internalFrameActivated(InternalFrameEvent)
Invoked when an internal frame is activated.
 o internalFrameClosed(InternalFrameEvent)
Invoked when an internal frame has been closed.
 o internalFrameClosing(InternalFrameEvent)
Invoked when an internal frame is in the process of being closed.
 o internalFrameDeactivated(InternalFrameEvent)
Invoked when an internal frame is de-activated.
 o internalFrameDeiconified(InternalFrameEvent)
Invoked when an internal frame is de-iconified.
 o internalFrameIconified(InternalFrameEvent)
Invoked when an internal frame is iconified.
 o internalFrameOpened(InternalFrameEvent)
Invoked when a internal frame has been opened.

Methods

 o internalFrameOpened
 public abstract void internalFrameOpened(InternalFrameEvent e)
Invoked when a internal frame has been opened.

See Also:
show
 o internalFrameClosing
 public abstract void internalFrameClosing(InternalFrameEvent e)
Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.

See Also:
setDefaultCloseOperation
 o internalFrameClosed
 public abstract void internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.

See Also:
setClosed
 o internalFrameIconified
 public abstract void internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.

See Also:
setIcon
 o internalFrameDeiconified
 public abstract void internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.

See Also:
setIcon
 o internalFrameActivated
 public abstract void internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.

See Also:
setSelected
 o internalFrameDeactivated
 public abstract void internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.

See Also:
setSelected

All Packages  Class Hierarchy  This Package  Previous  Next  Index